home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / TGCBOR20.ARJ / INTROPAK.COM / README.TXT < prev    next >
Text File  |  1991-08-29  |  6KB  |  158 lines

  1.             TEGL WINDOWS TOOLKIT II Release 2.0 Intro Pack
  2.  
  3.                Copyright 1991 TEGL SYSTEMS CORPORATION
  4.                          All rights reserved.
  5.  
  6.  
  7. This introductory package is for letting interested programmers try
  8. out the TEGL WINDOWS TOOLKIT II before buying. You may use to create
  9. programs on a trial basis. You may not sell or give away any programs
  10. that use any portion of this toolkit.
  11.  
  12. This distribution contains virtually all the features of our commercial
  13. version. It lacks: source code and documentation (we have provided
  14. sample programs and a quick guide). Programs created from this intro
  15. pack will display a copyright notice when they finish, a button with the
  16. copyright is always installed in the application and if a program is run
  17. for more than 20 minutes a copyright notice will appear.
  18.  
  19. This package may be distributed freely provided all files are included
  20. and the distribution is not changed in any way.
  21.  
  22. Buy the TEGL WINDOWS TOOLKIT II and you will receive:
  23.  
  24.        * latest version, with COMPLETE SOURCE CODE
  25.        * Reference manual
  26.        * Technical support
  27.        * Royalty free distribution rights on compiled applications
  28.  
  29. The TEGL WINDOWS TOOLKIT II Release 2.0 contains the following:
  30.  
  31.        * graphics interface (TGI), a replacement for the BGI
  32.          thats 2-6x faster.
  33.        * virtual memory manager (use EMS and hard disk)
  34.        * window manager
  35.        * event programming
  36.        * icon editor
  37.        * font editor
  38.        * world coordinates
  39.        * dialogue management
  40.        * supports CGA, Hercules, EGA, VGA and SuperVGA
  41.        * supports 256 colors (up to 1024x768)
  42.        * 40+ fonts
  43.  
  44.  
  45. This distribution contains no executable files. It is assumed that you
  46. have the target compiler and can compile the example programs yourself.
  47.  
  48. Files in this distribution:
  49.        readme.txt      This file
  50.        intropak.com    Self extracting archive (contains example programs
  51.                        and interfaces from the units).
  52.        tutor.com       Self extracting archive (contains example programs
  53.                        and tutorial instuctions).
  54.        header.com      Self extracting archive of the teglsys.h header file.
  55.  
  56.        ONE (or all of)
  57.        tclib.exe       Self extracting archive for Turbo C 2.0
  58.                        Turbo C++ 1.0 and Borland C++ 2.0
  59.        mslib.exe       Self extracting archive for Quick C 2.0 (& later)
  60.                        Microsoft C 5.1 & 6.0
  61.  
  62. INSTALLATION
  63.  
  64.        To install the intro pack just copy intropak.com, tutor.com,
  65.        header.com and the appropriate library archive to a
  66.        subdirectory on your harddrive then run each program.
  67.        Running these programs extracts them to the disk. After it
  68.        has run you will have over a 100 files taking up more than a
  69.        megabyte of disk space. You don't have to extract them all
  70.        into the same directory, its up to you.
  71.  
  72.        The tutorial files contain embedded example files that can
  73.        be extracted using the extract.exe untiliy. There is also a
  74.        batch file called 'exall.bat' that will extract all the
  75.        example files from the tuturial.
  76.  
  77.        The files are:
  78.  
  79.        *.pas           Example programs
  80.        teglsys.h       The header file for the library
  81.        teglsys.lib     The TEGL WINDOWS TOOLKIT II library.
  82.        examples.txt    A list of the example programs with a note on
  83.                        what aspect they illustrate.
  84.        extract.exe     Program to extract example files
  85.        order.txt       An order form.
  86.        quick.txt       A quick overview of the system.
  87.        menus.txt       The menuing system
  88.        buttons.txt     How to use Square buttons
  89.        picklist.txt    How to use picklists
  90.        frames.txt      Introduction to frames
  91.        twquick.txt     Quick introduction to the high level windows.
  92.  
  93. COMPILING THE PROGRAMS:
  94.  
  95. ONLY THE LARGE MEMORY MODEL IS SUPPORTED. Be sure to set this in the
  96. integrated environment, the batch files use the command line toggle.
  97. Additionally, byte alignment is used, word alignment with cause the
  98. programs to hang.
  99.  
  100. We have provided a number of batch files for compiling the demo programs
  101. using the command line compiler(s). They are:
  102.  
  103. tc2comp.bat    - Turbo C 2.0
  104. tcccomp.bat    - Turbo C++ 1.0
  105. bcccomp.bat    - Borland C++ 1.0
  106. qc2comp.bat    - Quick C 2.0 (& later)
  107. msccomp.bat    - Microsoft C 5.1 & 6.0
  108.  
  109. There are a NUMBER OF ASSUMPTIONS made in these batch files.
  110.  
  111.        1. The compiler is in the path.
  112.        2. The teglsys.h and teglsys.lib are either in the current
  113.           directory or in the compiler's directory.
  114.  
  115. The Turbo and Borland compilers search for a file named 'turboc.cfg' in
  116. the directory they are started from. This file contains directives for
  117. locating where header files and libary files are located. We assume that
  118. you have set these.
  119.  
  120.  
  121. Since the Microsoft compiler and linker use environment variables to
  122. determine the where header files and library files are to be found you
  123. must edit these to reflect how you system is set up.
  124.  
  125. TURBO AND BORLAND INTEGRATED ENVIRONMENTS:
  126.  
  127. To compile under the integrated environment you must create a project file
  128. and name 'teglsys.lib' as part of it.
  129.  
  130. Depending on the amount of memory available in your system you may be able
  131. to run some of the programs under the integrated environment. HINTS: be
  132. sure debugging is off, and you may want to set the maxwindowsize variable
  133. to a value of 16000. The protected mode compiler (bcx) usually has enough
  134. memory to run these programs.
  135.  
  136. We have found the integrated environments tend to hang easily, don't be
  137. surprised.
  138.  
  139. QUICK C INTEGRATED ENVIRONMENT:
  140.  
  141. The 'telgsys.h' header file is greater than the capacity of the Quick
  142. C integrated environment. Complain to Microsoft. Only the command line
  143. compiler can be used.
  144.  
  145.  
  146.  
  147. -----------------------------------------------------------------------------
  148.  
  149.                        TEGL SYSTEMS CORPORATION
  150.                   Suite 780, 789 West Pender Street
  151.                      Vancouver, British Columbia
  152.                             Canada V6C 1H2
  153.                          Phone (604) 669-2577
  154.                        Facsimile (604) 688-9530
  155.  
  156.  
  157.  
  158.